home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-12-11 | 616 b | 31 lines | [TEXT/MPS ] |
- // ULookupCommand.h
- // Copyright © 1991 by Apple Computer, Inc. All rights reserved.
- // Kent Sandvik DTS
- // This file contains the class for TLookup command, used for
- // doing the query over the network
-
-
- #ifndef __LOOKUPCOMMAND__
- #define __LOOKUPCOMMAND__
-
- #ifndef __AEGESTALT__
- #include "UAEGestalt.h"
- #endif
-
- #ifndef __AEDOCUMENT__
- #include "UAEDocument.h"
- #endif
-
- class TAEDocument;
-
- class TLookupCommand : public TCommand {
- public:
- TLookupCommand();
- virtual pascal void ILookupCommand(CommandNumber, TAEDocument*);
- virtual pascal void DoIt();
-
- // FIELDS
- TAEDocument* fDocument;
- };
-
- #endif